home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / CALLDEMO.C < prev    next >
C/C++ Source or Header  |  1997-04-13  |  219b  |  15 lines

  1. // asm_func() is in call.asm
  2.  
  3. // use 'QMAKE calldemo' to compile
  4.  
  5. #include <qlib.h>
  6. #include <stdio.h>
  7.  
  8. extern dword asm_func(void);
  9.  
  10. void main(void) {
  11.   printf("asm_func() returned %i\n",asm_func());
  12. }
  13.  
  14.  
  15.